* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

body {
    background: #202121;
    color: #ededed;
} 


/* header */

.header {
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    padding: 20px 8%;
    background: #ededed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    position: relative;
    text-decoration: none;
    color: #000000;
    font-size: 23px;
    font-weight: 700;
}



.navbar a {
    letter-spacing: 1.2px;
    text-decoration: none;
    font-size: 19px;
    color: #000000;
    font-weight: 500;
    margin-left: 35px;
}

.navbar a:hover, .navbar a.active  {
    color: #00abf0;
    border-bottom: 2px solid #00abf0;

}

#main-header{
    position: relative;
    text-align: center;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 50px;
    margin-top: 10%;
}


/* Docs Clone */

.content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 100px;
    padding-top: 25px;
}


.uconn-meal-planning,
.Docs-Clone{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    height: 500px;
    max-width: 1400px;
    max-width: 1400px;
}

.project-info{
    display: flex;
    flex-direction: row;
    height: 100%;
    background-color: #7153c3;
}

.project-details{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding-left: 5%;
    padding-right: 5%;
    max-width: 50%;
    background-color: #315565;
}

.project-picture{
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50%;
    overflow-y: hidden;
}

.project-picture > img{
    min-width: 100%;
    min-height: 100%;
}

.project-details > p{
    display: inline-block;
    position: relative;
    padding: 5px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    text-align: justify;
    overflow-y: hidden;
}

.project-buttons{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    min-width: 100%;
    min-height: 100px;
    padding-left: 10%;
    padding-right: 10%;
}

.project-buttons > button{
    height: 70px;
    border-radius: 8px;
    padding: 10px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    background-color: #8d6f40;
    color: rgb(255, 255, 255);
}






.text > button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    border-radius: 8px;
    padding: 10px;
    margin-left: 20%;
    margin-top: 12.5%;
    z-index: 1;
    font-size: 19px;
    font-weight: 600;
    color: rgb(255, 255, 255);
}

.project-buttons > button:hover {
    background-color: #ca9238;
    transform: translateY(-2px);
}



/* Meal Plan */

.uconn-meal-planning .project-info{
    display: flex;
    flex-direction: row-reverse;
    height: 100%;
}

.uconn-meal-planning .project-details{
    background-color: #2c5b4d;
}

.uconn-meal-planning .project-buttons > button{
    background-color: #7153c3;
}






































/* animations */


@keyframes showRight {
    100% {
        width: 0;
    }
}
